ContinueInterceptedRequestRequest
data class ContinueInterceptedRequestRequest(interceptionId: InterceptionId, errorReason: ErrorReason?, rawResponse: String?, url: String?, method: String?, postData: String?, headers: Headers?, authChallengeResponse: AuthChallengeResponse?)
Content copied to clipboard
Represents request frame that can be used with Network#continueInterceptedRequest operation call.
Response to Network.requestIntercepted which either modifies the request to continue with any modifications, or blocks it, or completes it with the provided response bytes. If a network fetch occurs as a result which encounters a redirect an additional Network.requestIntercepted event will be sent with the same InterceptionId. Deprecated, use Fetch.continueRequest, Fetch.fulfillRequest and Fetch.failRequest instead.
See also
Constructors
ContinueInterceptedRequestRequest
Link copied to clipboard
fun ContinueInterceptedRequestRequest(interceptionId: InterceptionId, errorReason: ErrorReason? = null, rawResponse: String? = null, url: String? = null, method: String? = null, postData: String? = null, headers: Headers? = null, authChallengeResponse: AuthChallengeResponse? = null)
Content copied to clipboard
Properties
authChallengeResponse
Link copied to clipboard
errorReason
Link copied to clipboard
interceptionId
Link copied to clipboard
rawResponse
Link copied to clipboard